Format der Templates

Paramter:

 0 -> Dateiname                  	             String
 1 -> Datum	                	             String
 2 -> Font Gre in Bytes Low    	             Byte	
 3 -> Font Gre in Bytes High		             Byte
 4 -> Font Breite in Pixeln		             Byte
 5 -> Font Hhe in Pixeln		             Byte
 6 -> Bits Pro Pixel			             Byte
 7 -> 1. Zeichen im Font		             Byte
 8 -> letztes Zeichen im Font		             Byte
 9 -> Font Gre in Byte		             Word
10 -> Bits Pro Pixel maskiert mit 0x7F               Byte
11 -> Font ist komprimiert ??		             String
12 -> binre Restdaten des Fonts	             String	  
13 -> binre Restdaten des Fonts aber als ASM .db    String

Kodierung:

- der Anfang eines Formatparamters ist '%'
- danach Index des Paramaters in obige Tabelle gefolgt von ':'
- danach Formatierungsbreite des Paramaters, optional, zb '0.2' bedeutet 2 Stellen mit Nullen aufgefllt
- danach Paramater Typ, 's' fr String, 'd' fr dezimal, 'x' fr Hexadezimal


Beispiele:

    File Name           : %0:s.h			%0:s -> Paramater 0 als String
    Date                : %1:s				%1:s -> Paramater 1 als String
    Font size in bytes  : 0x%2:0.2x%3:0.2x, %9:d	%2:0.2x -> Paramter 2 als HEX mit fhrenden Nullen, zweistellig 
    Font width          : %4:d
    Font height         : %5:d				%5:d -> Paramater 5 dezimal
    Font first char     : 0x%7:0.2x
    Font last char      : 0x%8:0.2x
    Font bits per pixel : %10:d
    Font is compressed  : %11:s



